func go/printer.isNL

10 uses

	go/printer (current package)
		gobuild.go#L35: 			for pos < len(p.output) && !isNL(p.output[pos]) {
		gobuild.go#L40: 		if pos >= len(p.output) || !isNL(p.output[pos]) {
		gobuild.go#L124: 	if n := len(after); n >= 2 && isNL(after[n-1]) && isNL(after[n-2]) {
		gobuild.go#L139: 	if len(y) > 0 && isNL(y[0]) && // y starts in blank line
		gobuild.go#L140: 		(len(x) == 0 || len(x) >= 2 && isNL(x[len(x)-1]) && isNL(x[len(x)-2])) { // x is empty or ends in blank line
		gobuild.go#L148: 	for pos < len(p.output) && !isNL(p.output[pos]) {
		gobuild.go#L162: 	for pos < len(p.output) && p.output[pos] != tabwriter.Escape && !isNL(p.output[pos]) {
		gobuild.go#L168: func isNL(b byte) bool {